CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - sudoku backtracking

搜索资源列表

  1. 利用回溯算法数独游戏解算C++代码

    0下载:
  2. 利用回溯算法数独游戏解算C++代码,能够较快的求解出数独问题,The use of backtracking algorithm solving sudoku C++ code, can be faster to solve a sudoku problem
  3. 所属分类:Windows编程

    • 发布日期:2017-03-21
    • 文件大小:1521
    • 提供者:与超
  1. Sodoku

    0下载:
  2. 数独游戏解算C++代码,在vc6.0上运行,控制台,使用回溯法解决,首先输出的是一个满足规则的数独例子,接着可以自己输入已知点的个数及其坐标、数字(要求不能违反规则),然后会生成满足条件的一个例子。-Sudoku solver C++ Code, in vc6.0 run on the console, use backtracking to solve, first of all to meet the output is a single example of a few rules, an
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:9800
    • 提供者:hjj
  1. Sudoku

    0下载:
  2. 数独解法,能够解不要求回溯的数独问题,目前只支持用户自己出题。-Sudoku Solution, to the solution does not require backtracking Sudoku problem, currently only supports the user
  3. 所属分类:Other Riddle games

    • 发布日期:2017-03-23
    • 文件大小:38707
    • 提供者:法法
  1. DancingLinks

    0下载:
  2. 在计算机科学,舞蹈链接,也被称为的DLx ,是技术建议唐纳德克努特有效地执行其算法十算法X是递归,随意性,深度优先,回溯算法,认为所有的解决方案的确切覆盖问题。一些较为著名的确切涵盖的问题包括瓦工,n皇后问题,数独。-In computer science, Dancing Links, also known as DLX, is the technique suggested by Donald Knuth to efficiently implement his Algorithm X. A
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:517957
    • 提供者:ucvvf
  1. sudokusolver

    0下载:
  2. a sudoku solver can solve sudoku problems which contains one solution or no solution. using backtracking algorithm-a sudoku solver can solve solve sudoku problems which contains one solution or no solution. using backtracking algorithm
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-04
    • 文件大小:1100
    • 提供者:alex
  1. Sudo

    0下载:
  2. 一个数独游戏的计算小程序.利用回溯算法.能算出所有可能的结果.-The calculation of a Sudoku applet. The use of backtracking algorithms. Is able to calculate all the possible outcomes.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-15
    • 文件大小:3950639
    • 提供者:黄金生
  1. Sudoku

    0下载:
  2. 回溯法生成数独-Backtracking generates Sudoku
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1026
    • 提供者:froser
  1. Sudoku

    0下载:
  2. 金山实习时候写的数独游戏,用到回溯算法,按代码规范写的-Jinshan practice time to write Sudoku, backtracking algorithm used by the code written specification
  3. 所属分类:Game Program

    • 发布日期:2017-05-15
    • 文件大小:3841068
    • 提供者:YuanfengDu
  1. sudoku

    0下载:
  2. a very simple example of backtracking solution to generate a sudoku grid, and its answer. only need to have a dificult analizer. just try to clear a certain cuantity of numbers. sorry by my english. i hope this will be usefull
  3. 所属分类:Java Develop

  1. sudu

    0下载:
  2. 数独求解程序,用回溯法求解一般数独,效率比较高-Sudoku solver, using backtracking to solve Sudoku general, more efficient
  3. 所属分类:Other Games

    • 发布日期:2017-04-04
    • 文件大小:746
    • 提供者:lxp
  1. SUDOKU

    0下载:
  2. 九宫格的数独问题,利用回溯法来求解,C#语言,包括:初始化及填数的步骤-Jiugongge Sudoku problem to solve using backtracking, C# language, including: the number of steps to initialize and fill
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:79248
    • 提供者:gle
  1. Sudoku

    0下载:
  2. 使用回溯求解数独的小程序,命令行读取输入输出文件-Backtracking to solve Sudoku applet command line reads the input and output files
  3. 所属分类:Other Riddle games

    • 发布日期:2017-11-08
    • 文件大小:11982
    • 提供者:zhangch
  1. sudokuc

    0下载:
  2. 数独,使用回溯法编写,思路清晰,适合初学者学习-Sudoku, the use of backtracking written, clear, suitable for beginners to learn
  3. 所属分类:Other Riddle games

    • 发布日期:2017-11-27
    • 文件大小:12236
    • 提供者:王小龙
  1. Crack-Sudoku

    0下载:
  2. Crack Sudoku use Backtracking
  3. 所属分类:Chess Poker games

    • 发布日期:2017-04-25
    • 文件大小:55830
    • 提供者:郑维健
  1. sudoku

    0下载:
  2. //一个解数独的程序,纯C编写,不依赖特殊库,移植容易。个人原创! //采用的回溯法,剪枝程序采用动态规划思想进行了大量优化,比一般数独程序可以统计用多少步,中间碰到多少分支,侧面反映题目难度,虽然不能和人的技巧相比,也可以参考一下。 //对于研究数独方法或许没有帮助,但是可以帮助验证结果,统计难度。对于出题时可以去掉的项,也可用其验证。有代码,看懂后可以随便修改。 //解世界上最难数独大概1s左右 //程序作者:原建业-Sudoku @ a program written in
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6370
    • 提供者:原建业
  1. suduko

    0下载:
  2. 用试探回溯法求解数独。从第一排第一个开始逐个尝试,并判断是否符合要求,如果不符合要求,回溯,如果符合要求,递归求解下一个位置,直到所有的位置已经填满。-Trial Sudoku backtracking. The first attempt to start the first row one by one and determine whether compliance with the requirements, if not met, back, if they meet the req
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:24232
    • 提供者:kangrong
  1. backtracking_solve_sudoku

    0下载:
  2. 回溯法解决数独问题,文件读取数独游戏,空位使用0补齐,输出为填充完毕的数独-Backtracking to solve Sudoku problems, file reads Sudoku, use 0 vacancies filled, the number of output is only completed filling
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-25
    • 文件大小:290337
    • 提供者:刘峰
  1. 常用问题的算法

    0下载:
  2. 常用问题的算法,包括表达式求值,递归二分查找,归并算法,回溯法求解数独问题等(The commonly used algorithms, including recursive expression evaluation, two search, merging algorithm, backtracking and Sudoku problem etc.)
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2018-01-01
    • 文件大小:26624
    • 提供者:yiyiyiyiyiyiyi
  1. sudoku

    0下载:
  2. 利用回溯法求解数独的小程序,程序利用Fortran语言编写(Using backtracking method to solve Sudoku)
  3. 所属分类:游戏

    • 发布日期:2018-01-10
    • 文件大小:1015808
    • 提供者:鱼丸油面
  1. 数独解法

    0下载:
  2. 在excel的单元格中填制已知的数,通过树叉的回溯,完成数独未知数的填制。(In the excel cell in the known number by backtracking tree, complete Sudoku fill in the unknown.)
  3. 所属分类:其他

    • 发布日期:2018-04-19
    • 文件大小:52224
    • 提供者:散步的云
« 12 »
搜珍网 www.dssz.com